/* * {
  overflow: hidden;
} */

html {
  scroll-behavior: smooth;
}

.main {
  background-image: url("../../assets/home.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  margin-top: 9rem;
  /* background-size: contain; */
}

.navbar {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  padding: 0.5rem 1rem;
  width: 100%; /* Ensure full width */
  box-sizing: border-box; /* Prevent overflow */
  overflow: hidden; /* Prevent any horizontal overflow */
}

.navbar-expand-lg .navbar-nav .nav-link {
  color: #000000 !important;
  font-weight: 700;
  padding: 0.5rem 1rem; /* Default padding */
  font-size: 0.875rem;
  border-radius: 10px;
  border: 2px solid #000000;
  text-align: center;
  transition: all 0.3s ease;
}

.navbar-expand-lg .navbar-nav .nav-link.active {
  border: 2px solid red;
}

.navbar-expand-lg .navbar-nav .nav-link:hover {
  color: #000000;
}

.navbar-brand img {
  max-width: 150px; /* Adjust based on your logo size */
  height: auto;
  border-radius: 10px;
  margin: 0;
}

.navbar-brand {
  margin-right: 0!important; /* Increased font size */
  padding: 0;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 20px; /* Ensure buttons are well-spaced */
}

.navbar .container-fluid {
  display: flex!important; /* Increased font size */
  align-items: center!important; /* Increased font size */
  justify-content: space-between!important; /* Increased font size */
  padding: 0 15px!important; /* Increased font size *//* Control spacing around navbar */
}

.navbar-toggler {
  margin-left: auto;
}
@media (max-width: 768px) {
  .gap-md-5{
    gap:1rem!important;
  }
  }
  @media (max-width: 991px) {
  
    .navbar-expand-lg .navbar-nav .nav-link {
      padding: 0.5rem 1rem;
      font-size: 0.75rem;
      margin: 0.25rem 0;
    }
    .navbar-expand-lg .navbar-nav {
      flex-direction: column;
      align-items: center;
      gap: 10px;
      width: auto; /* Ensure compact layout */
    }
    .navbar-nav {
      padding-left: 15px;
      justify-content: center;
      flex-direction: column;
      align-items: center;
    }
    .navbar {
      padding: 0.5rem;
    }
  }
  @media (min-width: 1024px) {
    .navbar {
      width: 100%; /* Full width of the container */
      max-width: 100%; /* Prevent overflow */
      padding: 0.01rem 0; /* Remove left and right padding */
      overflow-x: hidden; /* Prevent horizontal overflow */
    }
  
    .navbar .container-fluid {
      display: flex;
      flex-wrap: nowrap; /* Ensure no wrapping */
      align-items: center;
      justify-content: space-between;
      width: 100%; /* Full width */
      padding: 0; /* Remove all padding */
    }
  
    .navbar-brand {
      flex-shrink: 0;
      margin-right: auto;
      max-width: 130px; /* Prevent logo from making navbar wider */
    }
  
    .navbar-expand-lg .navbar-nav {
      display: flex;
      justify-content: center; /* Center the nav items */
      align-items: center;
      width: 100%; /* Ensure navbar items take full width */
      
      padding: 0; /* Remove extra padding */
    }
  
    .navbar-nav .nav-link {
      font-size: 0.9rem !important; /* Increased font size */
      padding: 0.4rem 1rem !important; /* Increased padding inside links */

      text-align: center;
      justify-content: center; /* Align content to the center */
      border-radius: 6px;
      white-space: nowrap; /* Prevents text from wrapping */
      overflow: hidden; /* Prevent content overflow */
      min-width: 80px; /* Adjust minimum width */
      max-width: none; /* Remove maximum width restriction */
    }
  
    .navbar-toggler {
      margin-left: auto;
    }
  }
  
  
/* Larger Screens */
@media (min-width: 1440px) {
  .navbar {
    width: 100%;
    max-width: 100%;
    padding: 0;
    overflow-x: hidden;
  }

  .navbar .container-fluid {
    display: flex!important; /* Increased font size */
    flex-wrap: nowrap!important; /* Increased font size */
    align-items: center!important; /* Increased font size */
    justify-content: space-between!important; /* Increased font size */
    width: 100%!important; /* Increased font size */
    padding: 0!important; /* Increased font size */
  }

  .navbar-brand {
    flex-shrink: 0;
    margin-right: 0;
    padding-left: 0;
  }

  .navbar-expand-lg {
    display: flex;
    justify-content: flex-start; /* Align navbar items starting from the left */
    width: 100%;
  }

  .navbar-expand-lg .navbar-nav {
    display: flex;
    align-items: center;
    justify-content: space-evenly !important; /* Increased font size */
    width: 100%; /* Ensure navbar items take full width */
    padding: 0;
    margin-left: 0 !important; /* Increased font size */
  }

  .navbar-nav .nav-link {
    font-size: 1.12rem !important; /* Increased font size */
    padding: 0.7rem 2.1rem !important; /* Increased padding for bigger clickable area */
    text-align: center;
    border-radius: 6px;
    white-space: nowrap;
    overflow: hidden;
    min-width: 120px; /* Increase the minimum width for larger links */
    max-width: none; /* Adjust maximum width */
  }

  .navbar-toggler {
    margin-left: auto;
  }
}

/* Ultra-Wide Screens */
@media (min-width: 2560px) {
  .navbar {
    width: 100%;
    max-width: 100%;
    padding: 0; /* Ensure no extra padding */
    overflow-x: hidden; /* Prevent overflow */
  }

  .navbar .container-fluid {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Distribute space evenly between brand and nav links */
    width: 100%;
    padding: 0; /* Remove any padding */
    margin: 0; /* Remove any margin */
  }

  .navbar-brand {
    margin: 0; /* Remove margin around brand */
    padding: 0; /* Remove padding */
    flex-shrink: 0; /* Prevent brand from shrinking */
    display: flex;
  }

  .navbar-expand-lg {
    display: flex;
    justify-content: space-between; /* Ensure nav links are distributed evenly */
    width: 100%;
  }

  .navbar-expand-lg .navbar-nav {
    display: flex;
    align-items: center;
    justify-content: space-evenly; /* Evenly distribute the nav links */
    gap: 20px; /* Provide space between nav links */
    width: 100%; /* Ensure the navbar takes full width */
    padding: 0;
    margin: 0; /* Remove any margin */
  }

  .navbar-nav .nav-link {
    font-size: 1.4rem !important; /* Increased font size */
    padding: 1rem 2.5rem !important; /* Increased padding */
    text-align: center;
    border-radius: 6px;
    white-space: nowrap;
    overflow: hidden;
    min-width: 200px;
    max-width: none;
    border: 2px solid transparent; /* Optional, for a cleaner look */
  }

  .navbar-toggler {
    margin-left: auto;
  }
}
/* Main container styling */
main {
  width: 100%;
  margin: 0 auto;
  padding: 0 0 10px 0; /* Adds padding to the top and bottom */
  min-height: 100vh;
  background-color: #fff;
  box-sizing: border-box;
}

/* Fixed Button Container */
.fixed-button-container {
  position: fixed;
  left: 0;
  top:23%;
  background-color: #fff;
  width: 100%; /* Ensure container spans the entire screen */
  z-index: 1000;
  padding: 10px 20px; /* Adds padding around the container */
  display: flex;
  gap: 5px; /* Adds space between buttons */
  justify-content: space-between; /* Spread buttons across the full width */
}

.fixed-button-container button {
  background-color: grey;
  color: white;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin: 5px 0;
  flex-grow: 1; /* Allow buttons to take up equal space */
  text-align: center; /* Center text within the buttons */
}

.fixed-button-container button:first-of-type {
  background-color: maroon; /* Maroon color for the first button */
}

.fixed-button-container a {
  color: white;
  text-decoration: none;
  display: block;
}
/* Main content container styling */
.container {
  padding: 6rem 0 0 0;
  max-width: 1200px;
  margin: 0 auto;
}

/* Flex container for layout */
.flex-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.image-section {
  flex: 1;
  min-width: 300px;
  margin: 0;
}

.content-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin: 0;
}

.styled-button {
  background-color: maroon;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin: 10px 0;
  text-align: center;
}

.styled-button h3 {
  margin: 0;
  font-size: 20px;
}

.content-section p {
  margin: 0;
  padding: 0;
  font-size: 16px;
  line-height: 2;
}
.social-icons a {
  font-size: 4.5rem; /* Adjust icon size */
  text-decoration: none; /* Remove underline */
  align-self: flex-end;
  padding: 10px;
}

.social-icons a:hover {
  transform: scale(1.2); /* Optional: Enlarge on hover */
  transition: transform 0.2s ease-in-out;
}

.social-icons i {
  vertical-align: middle;
}
/* Flex container for additional layout */
.flex-container-1 {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: flex-start;
  padding: 50px 0;
}

.flex-item {
  flex: 1;
  min-width: 250px;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.styled-button-1 {
  background-color: black;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin: 20px 0;
  text-align: center;
  align-self: center;
}

.separator {
  width: 1px;
  background-color: #ccc;
  height: 200px;
  margin: 50px 0;
}

.styled-button-1 h3 {
  margin: 0;
  font-size: 18px;
}

.flex-item p {
  padding: 0;
  font-size: 16px;
  line-height: 2;
}

/* Responsive styling for smaller screens */
@media (max-width: 768px) {
  .fixed-button-container {
    flex-wrap: wrap; /* Allows buttons to wrap if they don’t fit */
    top: 25% !important;
    justify-content: space-between; /* Keeps the buttons spread across the container */
    padding: 05px; /* Adjust padding for smaller screens */
  }

  .fixed-button-container button {
    padding:5px ;
    font-size: 14px; /* Reduces font size for small screens */
    width: calc(
      50% - 5px
    ); /* Makes each button half-width, adjusting for gap */
    box-sizing: border-box;
  }


  .flex-container,
  .flex-container-1 {
    flex-direction: column;
    gap: 15px;
    margin: 0 0 70px 0;
  }

  .separator {
    height: 1px;
    width: 100%;
    margin: 10px 0;
  }

  .content-section p,
  .flex-item p {
    font-size: 16px;
    line-height: 1.5;
  }

  .styled-button,
  .styled-button-1 {
    padding: 8px 15px;
  }
}

/* Media Queries */
/* 576px and smaller */
@media (max-width: 576px) {
  .container {
    padding: 4rem 0 0 0; /* Adjust padding for smaller screens */
    width: 100vw; /* Full width */
    margin: 0; /* Ensure no space is left around the container */
    overflow-x: hidden; /* Prevent horizontal scrolling */
    box-sizing: border-box;
  }

  .flex-container {
    flex-direction: column;
    gap: 15px; /* Reduce gap for smaller screens */
    width: 100%; /* Full width for flex container */
  }

  .image-section,
  .content-section {
    width: 100%; /* Ensure full width */
    max-width: 100%;
    margin: 0;
    padding: 0; /* Remove any extra padding */
  }

  .styled-button {
    width: 100%; /* Full-width buttons */
  }
}

@media (max-width: 480px) {
  /* Adjust fixed button layout for very small screens */
  .fixed-button-container {
    flex-wrap: wrap; /* Allows buttons to wrap if they don’t fit */
    justify-content: space-between; /* Keeps the buttons spread across the container */
    top: 25% !important;
    width: 100%; /* Ensure buttons take full width */
  }

  .image-section {
    width: 100%;
    max-width: 100%;
    border-radius: 6px;
    margin: 0;
  }

  /* Adjust flex containers for extra small screens */
  .flex-item,
  .content-section {
    margin: 0 auto;
    width: 100%; /* Ensure full width */
  }
}

/* Responsive fixes for smaller screens */
@media (max-width: 375px) {
  .container {
    padding: 4rem 0 0 0;
    width: 100vw; /* Full width */
    margin: 0; /* Remove margins */
    overflow-x: hidden; /* Prevent horizontal scrolling */
  }

  .social-icons a {
    font-size: 5.5rem; /* Adjust icon size */
  }

  .flex-container, .flex-container-1 {
    flex-direction: column; /* Stack items */
    gap: 15px;
    padding: 0 10px;
    width: 100%; /* Ensure full width */
  }

  .image-section, .content-section {
    width: 100%;
    max-width: 100%;
    margin: 0 auto; /* Center content */
  }

  .content-section .styled-button-1{
    width: 100%; /* Full-width buttons */
  }
}

@media (max-width: 320px) {
  
  .container {
    padding: 3rem 0 0 0;
    width: 100vw;
    margin: 0; /* Remove margins */
    overflow-x: hidden; /* Prevent unwanted horizontal scrolling */
  }

  .social-icons a {
    font-size: 5.5rem; /* Adjust icon size */
  }

  .flex-container, .flex-container-1 {
    flex-direction: column;
    gap: 10px;
    padding: 0 10px; /* Reduce padding */
    width: 100%; /* Ensure full width */
  }

  .image-section, .content-section {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }

  .content-section .styled-button-1{
    width: 100%; /* Full-width buttons */
  }
}



/* For large screens above 1024px */
@media (min-width: 1024px) {
  .fixed-button-container {
    position: fixed;
    left: 0;
    top:24%!important;
    padding: 15px 20px;
  }

  .fixed-button-container button:first-of-type {
    background-color: #800000; /* Darker maroon for large screens */
  }
  .container {
    padding-bottom: 25px ; /* Padding to avoid overlap with fixed buttons */
  
  }
  
  .image-section, .content-section {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
  .flex-container-1 {
    display: flex;
    flex-wrap: wrap;
    gap: 15px; /* Increased gap for better spacing */
    justify-content: center; /* Center-align items */
    padding: 10px; /* Add padding for better spacing */
  }

  .flex-item {
    
    min-width: 200px; /* Adjusted minimum width */
    max-width: 300px; /* Prevent items from stretching too much */
  

    padding: 15px; /* Internal padding */

  }
  
.separator {
  width: 1px;
  background-color: #ccc;
  height: 300px;
  margin: 60px 0;
}

}

/* For extra large screens (min-width: 1440px) */
@media (min-width: 1440px) {
  .fixed-button-container {
    position: fixed;
    left: 0;
    top: 17%!important;
    
  }


  .container {
    padding-bottom: 25px ; /* Padding to avoid overlap with fixed buttons */
  }
  

}

@media (min-width: 2560px) {
  .fixed-button-container {
    position: fixed;
    left: 0;
    top: 11%!important;

  }
.fixed-button-container button{
  font-size: 28px;
}
  .fixed-button-container button:first-of-type {
    background-color: #660000; /* Even darker maroon for very large screens */
   
  }

  .container {
    padding: 7rem 0 6rem 0;
    max-width: 1800px;
    margin: 0 auto;
  }
  .image-section, 
  .content-section {
    flex: 1;
    min-width: 300px;
    max-width: 50%; /* Ensures equal width */
    margin: 0;
    display: flex;
    justify-content: center; /* Centers content inside */
    align-items: center; /* Aligns content vertically */
    flex-direction: column; /* Keeps text stacked */
  }
  

  .flex-container-1 {
    display: flex;
    flex-wrap: wrap;
    gap: 15px; /* Increased gap for better spacing */
    justify-content: center; /* Center-align items */
    padding: 10px; /* Add padding for better spacing */
  }

  .flex-item {
    
    max-width: 400px; /* Prevent items from stretching too much */
  

    padding: 15px; /* Internal padding */

  }

  
  .styled-button-1 {
    width: 100%;
    max-width: 100%;
  }
  
  .styled-button h3 {
    margin: 0;
    font-size: 24px;
  }
  
  .content-section p {
    margin: 0;
    padding: 0;
    font-size: 26px;
    line-height: 2;
  }
  /* Adjust button size for larger screens */
  .styled-button-1 h3 {
    padding: 14px;
    font-size: 2.0rem; /* Increase button font size */
  }
  .styled-button-1 h3
  /* Adjust social icon size for large screens */
  .social-icons a {
    font-size: 5.7rem; /* Larger social icon size */
  }

  .separator {
    height: 350px; /* Increase separator height for large screens */
  }

  .flex-item p {
    font-size: 26px; /* Increase font size for better readability */
  }

  /* Adjust spacing and layout for large screens */
  .flex-item {
    margin: 10px 0;
  }
}


.index_footer {
  clear: both;
  width: 100%;
  color: #fff;
  padding: 10px;
  position: fixed;
  text-align: center; /* Center text for smaller screens */
  background-color: black;
  left: 0;
  bottom: 0;
  z-index: 1000;
}

.index_footer a {
  color: white; /* Change to desired link color */
  text-decoration: none; /* Remove underline */
  margin: 0 40px; /* Space between links */
  display: flex; /* Ensures the icon and text are aligned */
  align-items: center; /* Align icon with text */
}

.index_footer a:hover {
  text-decoration: underline; /* Optional: Add underline on hover */
}

.index_footer i {
  padding-right: 20px; /* Adjust padding between icon and text */
}


/* Responsive styles */
@media (max-width: 768px) {
  .index_footer {
    padding: 8px; /* Reduce padding for smaller screens */
    font-size: 12px; /* Adjust font size */
    justify-content: center !important; /* Center items on smaller screens */
  }

  .index_footer a {
    margin: 0 10px; /* Further reduced space between links */
    display: flex; /* Ensure the icon and text are aligned */
    align-items: center; /* Align icon with text */
  }

  .index_footer i {
    padding-right: 5px; /* Further adjust padding between icon and text */
  }


}

@media (max-width: 480px) {
  .index_footer {
    padding: 4px; /* Further reduce padding for very small screens */
    font-size: 12px; /* Further adjust font size */
    justify-content: center; /* Center items on smaller screens */
    align-items: center; /* Ensure items are vertically centered */
    display: flex; /* Ensure Flexbox is applied */
    text-align: center; /* Center text for small screens */
  }

  .index_footer a {
    margin: 0 80px; /* Further reduced space between links */
    display: flex; /* Ensure the icon and text are aligned */
    align-items: center; /* Align icon with text */
  }

  .index_footer i {
    padding-right: 5px; /* Further adjust padding between icon and text */
  }
}


/* Responsive styles for 1024px screens */
@media (min-width: 1024px) {
  .index_footer {
    padding: 12px; /* Adjust padding for 1024px screens */
    font-size: 14px; /* Slightly larger font size for readability */
    justify-content: center !important; /* Center items */
  }

  .index_footer a {
    margin: 0 15px; /* Adjust space between links */
    display: flex; /* Ensure the icon and text are aligned */
    align-items: center; /* Align icon with text */
  }

  .index_footer i {
    padding-right: 7px; /* Adjust padding between icon and text */
  }
}

/* Responsive styles for 1440px screens */
@media (min-width: 1440px) {
  .index_footer {
    padding: 20px; /* Increase padding for 1440px screens */
    font-size: 18px; /* Larger font size for readability */
    justify-content: center !important; /* Center items */
  }

  .index_footer a {
    margin: 0 20px; /* Adjust space between links */
    display: flex; /* Ensure the icon and text are aligned */
    align-items: center; /* Align icon with text */
  }

  .index_footer i {
    padding-right: 10px; /* Increase padding between icon and text */
  }
}

/* Responsive styles for 2560px screens */
@media (min-width: 2560px) {
  .index_footer {
    padding: 35px; /* More padding for 2560px screens */
    font-size: 32px; /* Larger font size for readability */
    justify-content: center !important; /* Center items */
  }

  .index_footer a {
    margin: 0 30px; /* Larger space between links */
    display: flex; /* Ensure the icon and text are aligned */
    align-items: center; /* Align icon with text */
  }

  .index_footer i {
    padding-right: 14px; /* More padding between icon and text */
  }
}
